home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20020314-20021006 / 000185_fdc@columbia.edu_Sun Jun 30 11:13:18 EDT 2002.msg < prev    next >
Text File  |  2020-01-01  |  2KB  |  56 lines

  1. Article: 13491 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
  3. From: fdc@columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: ms-kermit and alt keys
  6. Date: 30 Jun 2002 11:13:08 -0400
  7. Organization: Columbia University
  8. Lines: 39
  9. Message-ID: <afn764$2g2$1@watsol.cc.columbia.edu>
  10. References: <a08c04ee.0206291155.1521d7da@posting.google.com>
  11. NNTP-Posting-Host: watsol.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1025449989 16798 128.59.39.139 (30 Jun 2002 15:13:09 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 30 Jun 2002 15:13:09 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:13491
  16.  
  17. In article <a08c04ee.0206291155.1521d7da@posting.google.com>,
  18. Tyler Spivey <tspivey8@telus.net> wrote:
  19. : how do i get my alt keys to work under ms-dos kermit 3.14?
  20. :
  21. It depends on what you want them to do.
  22.  
  23. : if i do an alt-r in kermit, with:
  24. : set term by 8
  25. : set term cont 8
  26. : it doesn't work.
  27. : it's set at the default vt320,
  28. : and i did:
  29. : export TERM=vt320
  30. : the machine i'm connecting to is linux, through a null modem cable.
  31. :
  32. Alt-r is Reset Terminal, as you can see by giving a SHOW KEY command
  33. and then entering Alt-r.
  34.  
  35. : so basicly my question is:
  36. : how do i send alt (or meta) keys through the serial port on an 8 bit
  37. : (stty cs8) connection?
  38. : and can i send alt-f<n> keys?
  39. :
  40. You can map any key to send whatever you want.  By default Alt keys
  41. are mapped to various functions.  There is no Alt = Meta option in
  42. MS-DOS Kermit.
  43.  
  44. You can find a selection of sample key mapping files in MS-DOS Kermit's
  45. KEYBOARD subdirectory.
  46.  
  47. : sorry for all the questions - but how would i check if vt320 is
  48. : defined in my system at all?
  49.  
  50. export term=vt320
  51. emacs
  52.  
  53. If EMACS starts up normally, vt320 is supported.
  54.  
  55. - Frank
  56.